home *** CD-ROM | disk | FTP | other *** search
/ Leonardo daVinci / LEODAVINCI.ISO / DATA / G2.Dxr / 00140_L2MouseUpMapCell8 sprite script.ls < prev    next >
Encoding:
Text File  |  1996-11-22  |  221 b   |  16 lines

  1. global vG2Wall8oObj
  2.  
  3. on mouseDown
  4.   if objectp(vG2Wall8oObj) then
  5.     registerMouseDown()
  6.     clickSound()
  7.   end if
  8. end
  9.  
  10. on mouseUp
  11.   if not validateMouseDown() then
  12.     exit
  13.   end if
  14.   L2MouseUpMapCell(vG2Wall8oObj)
  15. end
  16.